home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / network / ka9q / ka9q_src.arc / CONFIG.H < prev    next >
C/C++ Source or Header  |  1988-11-30  |  942b  |  29 lines

  1. /* Software options */
  2. #define SCREEN        1    /* trace screen on the Atari-ST */
  3. #define    SERVERS        1    /* Include TCP servers */
  4. #define    TRACE        1    /* Include packet tracing code */
  5. #define    NSESSIONS    10    /* Number of interactive clients */
  6.  
  7. /* Hardware configuration */
  8. #undef    PC_EC        1    /* 3-Com 3C501 Ethernet controller */
  9. #define    SLIP        1    /* Serial Line IP subnet code */
  10. #undef    KISS        1    /* KISS TNC code */
  11. #undef    HAPN        1    /* Hamilton Area Packet Network driver code */
  12. #undef    EAGLE        1    /* Eagle card driver */
  13. #undef    PC100        1    /* PAC-COM PC-100 driver code */
  14. #undef    APPLETALK    1    /* Appletalk interface (Macintosh) */
  15. #define    SLFP        1    /* Serial Line Framing Protocol */
  16.  
  17. #if (KISS || HAPN || EAGLE || PC100)
  18. #define    AX25        1        /* AX.25 subnet code */
  19. #endif
  20.  
  21. /* KISS TNC implies SLIP */
  22. #if (KISS && !SLIP)
  23. #define    SLIP        1        /* Serial Line IP subnet code */
  24. #endif
  25.  
  26. #ifdef    PC_EC
  27. #define    ETHER    1        /* Generic Ethernet code */
  28. #endif
  29.